home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / delphi1 / lessons.exe / lesson1 / CONV.DFM / CONV.txt
Encoding:
Text File  |  1996-07-07  |  872 b   |  51 lines

  1. object Form1: TForm1
  2.   Left = 252
  3.   Top = 124
  4.   Width = 460
  5.   Height = 227
  6.   Caption = 'Form1'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   TextHeight = 16
  13.   object Label1: TLabel
  14.     Left = 40
  15.     Top = 16
  16.     Width = 209
  17.     Height = 13
  18.     Caption = 'Convert from miles:'
  19.   end
  20.   object Label2: TLabel
  21.     Left = 40
  22.     Top = 56
  23.     Width = 233
  24.     Height = 13
  25.     Caption = 'Convert to kilometres:'
  26.   end
  27.   object ConvertFromEdBox: TEdit
  28.     Left = 296
  29.     Top = 8
  30.     Width = 121
  31.     Height = 24
  32.     TabOrder = 0
  33.   end
  34.   object ConvertToEdBox: TEdit
  35.     Left = 296
  36.     Top = 48
  37.     Width = 121
  38.     Height = 24
  39.     TabOrder = 1
  40.   end
  41.   object CalcBtn: TButton
  42.     Left = 296
  43.     Top = 80
  44.     Width = 121
  45.     Height = 33
  46.     Caption = '&Calculate'
  47.     TabOrder = 2
  48.     OnClick = CalcBtnClick
  49.   end
  50. end
  51.